[DEPRECATED] Use form field endpoints instead. List workflow custom field selections
curl --request GET \
--url https://api.rootly.com/v1/workflows/{workflow_id}/custom_field_selections \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "workflow_custom_field_selections",
"attributes": {
"workflow_id": "<string>",
"custom_field_id": 123,
"incident_condition": "ANY",
"values": [
"<string>"
],
"selected_option_ids": [
123
]
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
success
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/workflows/{workflow_id}/custom_field_selections \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "workflow_custom_field_selections",
"attributes": {
"workflow_id": "<string>",
"custom_field_id": 123,
"incident_condition": "ANY",
"values": [
"<string>"
],
"selected_option_ids": [
123
]
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}